home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / swingall.jar / javax / swing / text / ChangedCharSetException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-07-15  |  526 b   |  22 lines

  1. package javax.swing.text;
  2.  
  3. import java.io.IOException;
  4.  
  5. public class ChangedCharSetException extends IOException {
  6.    String charSetSpec;
  7.    boolean charSetKey;
  8.  
  9.    public ChangedCharSetException(String var1, boolean var2) {
  10.       this.charSetSpec = var1;
  11.       this.charSetKey = var2;
  12.    }
  13.  
  14.    public String getCharSetSpec() {
  15.       return this.charSetSpec;
  16.    }
  17.  
  18.    public boolean keyEqualsCharSet() {
  19.       return this.charSetKey;
  20.    }
  21. }
  22.